home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 036a / pmfinder.zip / ARC.H < prev    next >
Text File  |  1991-12-03  |  847b  |  15 lines

  1.  
  2. typedef struct {
  3.      char ArcMark;                    /* arc mark = 0x1A                                   */
  4.      char HeaderVersion;               /* header version 0 = end, else pack method */
  5.      char Name[13];                    /* file name                                        */
  6.      unsigned long Size;               /* size of compressed file                         */
  7.      DOS_FILE_DATE Date;
  8.      DOS_FILE_TIME Time;
  9.      unsigned Crc;                    /* cyclic redundancy check                         */
  10.      unsigned long Length;          /* true file length                                   */
  11.      } ARCHIVE_HEADER;               /* the next size bytes after the header          */
  12.                                         /* are the file, then another header ...     */
  13.  
  14. void  DoArc(char  *,char *,HWND);
  15.